home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000182_news@newsmaster….columbia.edu _Thu Oct 22 10:22:43 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA00469
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 22 Oct 1998 10:22:43 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA26721
  7.     for kermit.misc@watsun; Thu, 22 Oct 1998 10:22:43 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc,comp.os.linux.misc
  11. Subject: Re: CKermit 6.1beta rpm?
  12. Date: 22 Oct 1998 14:22:42 GMT
  13. Organization: Columbia University
  14. Lines: 59
  15. Message-ID: <70nf3i$oga$1@apakabar.cc.columbia.edu>
  16. References: <7093jk$hpl$1@eskinews.eskimo.com> <70ju4k$567$1@eskinews.eskimo.com> <70kpvd$7mu$1@apakabar.cc.columbia.edu> <70lk07$4qb$1@eskinews.eskimo.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9378 comp.os.linux.misc:303582
  19.  
  20. In article <70lk07$4qb$1@eskinews.eskimo.com>,
  21. Jim Osborn <jimo@eskimo.com> wrote:
  22. : ...
  23. : Thanks for illuminating some of the frustrations of keeping up with
  24. : the various changes.  In particular, the details of dealing with
  25. : things like hardware flow control sound worth my following up on.
  26. I'd still like confirmation that C-Kermit 6.1 Beta can be built "out of the
  27. box" on Red Hat, Slackware, Debian, SuSE, Caldera, and any other Linux
  28. distributions I might not know about, and various versions of each, and if
  29. not, what the error messages are or what changes had to be made to Kermit
  30. itself, or what symlinks had to be installed, etc.  Instructions:
  31.  
  32.   $ mkdir kermit
  33.   $ cd kermit
  34.   $ ftp kermit.columbia.edu
  35.   user: anonymous
  36.   password: your-email-address
  37.   ftp> cd kermit/test/bin
  38.   ftp> binary
  39.   ftp> get cku193.tar.gz
  40.   ftp> bye
  41.   $ gunzip cku193.tar.gz
  42.   $ tar xvf cku193.tar
  43.   $ make linux
  44.  
  45. Please send me note stating the Linux package name and version (e.g. Red Hat
  46. 5.1), the hardware platform (PC, Alpha, Sparc, etc), and the results of the
  47. build (success, or failure with messages).
  48.  
  49. I already know it is OK on Red Hat 5.1 (PC and Alpha), and on the Amiga
  50. (Red Hat 5.0).
  51.  
  52. Thanks!
  53.  
  54. : Now if I can just figure out where these beeps come from whenever
  55. : a script writes to the screen... :)
  56. Beeps come from:
  57.  
  58.  a. Syntax error messages (when an invalid command is included in the
  59.     script).  Cure: fix the syntax errors.
  60.  
  61.  b. BEL characters coming from the host and displayed locally during INPUT /
  62.     MINPUT when INPUT ECHO is ON.  Cure: SET INPUT ECHO OFF.
  63.  
  64.  c. Completion of file transfer.  To defeat: SET TRANSFER BELL OFF.
  65.  
  66.  d. Explicit "printing" of BEL characters by your script, using the
  67.     BEEP command or by including \7 in an ECHO string, etc.  But if you
  68.     had done this, you would expect some beeps.
  69.  
  70. Of course other beeps are possible during interactive use: the ones that
  71. come from host in CONNECT (terminal) mode, the ones you get by trying to
  72. complete a command field that is invalid or insufficiently specified, or by
  73. trying to delete past the beginning of the command buffer, or by trying to
  74. recall commands beyond the boundaries of the recall buffer, etc.
  75.  
  76. - Frank